home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / emacs.lha / emacs-19.16 / lisp / terminal.el < prev    next >
Lisp/Scheme  |  1993-06-09  |  43KB  |  1,249 lines

  1. ;;; terminal.el --- terminal emulator for GNU Emacs.
  2.  
  3. ;; Copyright (C) 1986, 1987, 1988, 1989, 1993 Free Software Foundation, Inc.
  4.  
  5. ;; Author: Richard Mlynarik <mly@eddie.mit.edu>
  6. ;; Maintainer: FSF
  7. ;; Keywords: comm, terminals
  8.  
  9. ;; This file is part of GNU Emacs.
  10.  
  11. ;; GNU Emacs is free software; you can redistribute it and/or modify
  12. ;; it under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation; either version 2, or (at your option)
  14. ;; any later version.
  15.  
  16. ;; GNU Emacs is distributed in the hope that it will be useful,
  17. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. ;; GNU General Public License for more details.
  20.  
  21. ;; You should have received a copy of the GNU General Public License
  22. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  23. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  
  25. ;;; Code:
  26.  
  27. ;;>>TODO
  28. ;;>> terminfo?
  29. ;;>> ** Nothing can be done about emacs' meta-lossage **
  30. ;;>>  (without redoing keymaps `sanely' -- ask Mly for details)
  31.  
  32. ;;>> One probably wants to do setenv MORE -c when running with
  33. ;;>>   more-processing enabled.
  34.  
  35. (require 'ehelp)
  36.  
  37. (defvar terminal-escape-char ?\C-^
  38.   "*All characters except for this are passed verbatim through the
  39. terminal-emulator.  This character acts as a prefix for commands
  40. to the emulator program itself.  Type this character twice to send
  41. it through the emulator.  Type ? after typing it for a list of
  42. possible commands.
  43. This variable is local to each terminal-emulator buffer.")
  44.  
  45. (defvar terminal-scrolling t ;;>> Setting this to T sort-of defeats my whole aim in writing this package...
  46.   "*If non-nil, the terminal-emulator will losingly `scroll' when output occurs
  47. past the bottom of the screen.  If nil, output will win and `wrap' to the top
  48. of the screen.
  49. This variable is local to each terminal-emulator buffer.")
  50.  
  51. (defvar terminal-more-processing t
  52.   "*If non-nil, do more-processing.
  53. This variable is local to each terminal-emulator buffer.")
  54.  
  55. ;; If you are the sort of loser who uses scrolling without more breaks
  56. ;; and expects to actually see anything, you should probably set this to
  57. ;; around 400
  58. (defvar terminal-redisplay-interval 5000
  59.   "*Maximum number of characters which will be processed by the
  60. terminal-emulator before a screen redisplay is forced.
  61. Set this to a large value for greater throughput,
  62. set it smaller for more frequent updates but overall slower
  63. performance.")
  64.  
  65. (defvar terminal-more-break-insertion
  66.   "*** More break -- Press space to continue ***")
  67.  
  68. (defvar terminal-meta-map nil)
  69. (if terminal-meta-map
  70.     nil
  71.   (let ((map (make-sparse-keymap)))
  72.     (define-key map [t] 'te-pass-through)
  73.     (setq terminal-meta-map map)))
  74.  
  75. (defvar terminal-map nil)
  76. (if terminal-map
  77.     nil
  78.   (let ((map (make-sparse-keymap)))
  79.     (define-key map [t] 'te-pass-through)
  80.     (define-key map "\e" terminal-meta-map)
  81.     ;(define-key map "\C-l"
  82.     ;  '(lambda () (interactive) (te-pass-through) (redraw-display)))
  83.     (setq terminal-map map)))
  84.  
  85. (defvar terminal-escape-map nil)
  86. (if terminal-escape-map
  87.     nil
  88.   (let ((map (make-sparse-keymap)))
  89.     (define-key map [t] 'undefined)
  90.     (let ((s "0"))
  91.       (while (<= (aref s 0) ?9)
  92.     (define-key map s 'digit-argument)
  93.     (aset s 0 (1+ (aref s 0)))))
  94.     (define-key map "b" 'switch-to-buffer)
  95.     (define-key map "o" 'other-window)
  96.     (define-key map "e" 'te-set-escape-char)
  97.     (define-key map "\C-l" 'redraw-display)
  98.     (define-key map "\C-o" 'te-flush-pending-output)
  99.     (define-key map "m" 'te-toggle-more-processing)
  100.     (define-key map "x" 'te-escape-extended-command)
  101.     ;;>> What use is this?  Why is it in the default terminal-emulator map?
  102.     (define-key map "w" 'te-edit)
  103.     (define-key map "?" 'te-escape-help)
  104.     (define-key map (char-to-string help-char) 'te-escape-help)
  105.     (setq terminal-escape-map map)))
  106.  
  107. (defvar te-escape-command-alist nil)
  108. (if te-escape-command-alist
  109.     nil
  110.   (setq te-escape-command-alist
  111.     '(("Set Escape Character" . te-set-escape-char)
  112.           ;;>> What use is this?  Why is it in the default terminal-emulator map?
  113.       ("Edit" . te-edit)
  114.       ("Refresh" . redraw-display)
  115.       ("Record Output" . te-set-output-log)
  116.       ("Photo" . te-set-output-log)
  117.       ("Tofu" . te-tofu) ;; confuse the uninitiated
  118.       ("Stuff Input" . te-stuff-string)
  119.       ("Flush Pending Output" . te-flush-pending-output)
  120.       ("Enable More Processing" . te-enable-more-processing)
  121.       ("Disable More Processing" . te-disable-more-processing)
  122.       ("Scroll at end of page" . te-do-scrolling)
  123.       ("Wrap at end of page" . te-do-wrapping)
  124.       ("Switch To Buffer" . switch-to-buffer)
  125.       ("Other Window" . other-window)
  126.       ("Kill Buffer" . kill-buffer)
  127.       ("Help" . te-escape-help)
  128.       ("Set Redisplay Interval" . te-set-redisplay-interval)
  129.       )))
  130.  
  131. (defvar terminal-more-break-map nil)
  132. (if terminal-more-break-map
  133.     nil
  134.   (let ((map (make-sparse-keymap)))
  135.     (define-key map [t] 'te-more-break-unread)
  136.     (define-key map (char-to-string help-char) 'te-more-break-help)
  137.     (define-key map " " 'te-more-break-resume)
  138.     (define-key map "\C-l" 'redraw-display)
  139.     (define-key map "\C-o" 'te-more-break-flush-pending-output)
  140.     ;;>>> this isn't right
  141.     ;(define-key map "\^?" 'te-more-break-flush-pending-output) ;DEL
  142.     (define-key map "\r" 'te-more-break-advance-one-line)
  143.  
  144.     (setq terminal-more-break-map map)))
  145.   
  146.  
  147. ;;; Pacify the byte compiler
  148. (defvar te-process nil)
  149. (defvar te-log-buffer nil)
  150. (defvar te-height nil)
  151. (defvar te-width nil)
  152. (defvar te-more-count nil)
  153. (defvar te-redisplay-count nil)
  154. (defvar te-pending-output nil)
  155. (defvar te-saved-point)
  156. (defvar te-more-old-point nil)
  157. (defvar te-more-old-local-map nil)
  158. (defvar te-more-old-filter nil)
  159. (defvar te-more-old-mode-line-format nil)
  160. (defvar te-pending-output-info nil)
  161.  
  162.  
  163. ;;;;  escape map
  164.  
  165. (defun te-escape ()
  166.   (interactive)
  167.   (let (s 
  168.     (local (current-local-map))
  169.     (global (current-global-map)))
  170.     (unwind-protect
  171.     (progn
  172.       (use-global-map terminal-escape-map)
  173.       (use-local-map terminal-escape-map)
  174.       (setq s (read-key-sequence
  175.             (if prefix-arg
  176.             (format "Emacs Terminal escape> %d "
  177.                 (prefix-numeric-value prefix-arg))
  178.                 "Emacs Terminal escape> "))))
  179.       (use-global-map global)
  180.       (use-local-map local))
  181.     (message "")
  182.     (cond ((string= s (make-string 1 terminal-escape-char))
  183.        (setq last-command-char terminal-escape-char)
  184.        (let ((terminal-escape-char -259))
  185.          (te-pass-through)))
  186.       ((setq s (lookup-key terminal-escape-map s))
  187.        (call-interactively s)))))
  188.  
  189. (defun te-escape-help ()
  190.   "Provide help on commands available after terminal-escape-char is typed."
  191.   (interactive)
  192.   (message "Terminal emulator escape help...")
  193.   (let ((char (single-key-description terminal-escape-char)))
  194.     (with-electric-help
  195.       (function (lambda ()
  196.      (princ (format "Terminal-emulator escape, invoked by \"%s\"
  197. Type \"%s\" twice to send a single \"%s\" through.
  198.  
  199. Other chars following \"%s\" are interpreted as follows:\n"
  200.             char char char char))
  201.  
  202.      (princ (substitute-command-keys "\\{terminal-escape-map}\n"))
  203.      (princ (format "\nSubcommands of \"%s\" (%s)\n"
  204.             (where-is-internal 'te-escape-extended-command
  205.                        terminal-escape-map nil t)
  206.             'te-escape-extended-command))
  207.      (let ((l (if (fboundp 'sortcar)
  208.               (sortcar (copy-sequence te-escape-command-alist)
  209.                    'string<)
  210.               (sort (copy-sequence te-escape-command-alist)
  211.                 (function (lambda (a b)
  212.                               (string< (car a) (car b))))))))
  213.        (while l
  214.          (let ((doc (or (documentation (cdr (car l)))
  215.                 "Not documented")))
  216.            (if (string-match "\n" doc)
  217.            ;; just use first line of documentation
  218.            (setq doc (substring doc 0 (match-beginning 0))))
  219.            (princ "  \"")
  220.            (princ (car (car l)))
  221.            (princ "\":\n     ")
  222.            (princ doc)
  223.            (write-char ?\n))
  224.          (setq l (cdr l))))
  225.      nil)))))
  226.  
  227.             
  228.  
  229. (defun te-escape-extended-command ()
  230.   (interactive)
  231.   (let ((c (let ((completion-ignore-case t))
  232.          (completing-read "terminal command: "
  233.                   te-escape-command-alist
  234.                   nil t))))
  235.     (if c
  236.     (catch 'foo
  237.       (setq c (downcase c))
  238.       (let ((l te-escape-command-alist))
  239.         (while l
  240.           (if (string= c (downcase (car (car l))))
  241.           (throw 'foo (call-interactively (cdr (car l))))
  242.         (setq l (cdr l)))))))))
  243.  
  244. ;; not used.
  245. (defun te-escape-extended-command-unread ()
  246.   (interactive)
  247.   (setq unread-command-events (listify-key-sequence (this-command-keys)))
  248.   (te-escape-extended-command))
  249.  
  250. (defun te-set-escape-char (c)
  251.   "Change the terminal-emulator escape character."
  252.   (interactive "cSet escape character to: ")
  253.   (let ((o terminal-escape-char))
  254.     (message (if (= o c)
  255.          "\"%s\" is the escape char"
  256.              "\"%s\" is now the escape; \"%s\" passes through")
  257.          (single-key-description c)
  258.          (single-key-description o))
  259.     (setq terminal-escape-char c)))
  260.  
  261.  
  262. (defun te-stuff-string (string)
  263.   "Read a string to send to through the terminal emulator
  264. as though that string had been typed on the keyboard.
  265.  
  266. Very poor man's file transfer protocol."
  267.   (interactive "sStuff string: ")
  268.   (process-send-string te-process string))
  269.  
  270. (defun te-set-output-log (name)
  271.   "Record output from the terminal emulator in a buffer."
  272.   (interactive (list (if te-log-buffer
  273.              nil
  274.                (read-buffer "Record output in buffer: "
  275.                     (format "%s output-log"
  276.                         (buffer-name (current-buffer)))
  277.                     nil))))
  278.   (if (or (null name) (equal name ""))
  279.       (progn (setq te-log-buffer nil)
  280.          (message "Output logging off."))
  281.     (if (get-buffer name)
  282.     nil
  283.       (save-excursion
  284.     (set-buffer (get-buffer-create name))
  285.     (fundamental-mode)
  286.     (buffer-disable-undo (current-buffer))
  287.     (erase-buffer)))
  288.     (setq te-log-buffer (get-buffer name))
  289.     (message "Recording terminal emulator output into buffer \"%s\""
  290.          (buffer-name te-log-buffer))))
  291.  
  292. (defun te-tofu ()
  293.   "Discontinue output log."
  294.   (interactive)
  295.   (te-set-output-log nil))
  296.   
  297.  
  298. (defun te-toggle (sym arg)
  299.   (set sym (cond ((not (numberp arg)) arg)
  300.          ((= arg 1) (not (symbol-value sym)))
  301.          ((< arg 0) nil)
  302.          (t t))))
  303.  
  304. (defun te-toggle-more-processing (arg)
  305.   (interactive "p")
  306.   (message (if (te-toggle 'terminal-more-processing arg)
  307.            "More processing on" "More processing off"))
  308.   (if terminal-more-processing (setq te-more-count -1)))
  309.  
  310. (defun te-toggle-scrolling (arg)
  311.   (interactive "p")
  312.   (message (if (te-toggle 'terminal-scrolling arg)
  313.            "Scroll at end of page" "Wrap at end of page")))
  314.  
  315. (defun te-enable-more-processing ()
  316.   "Enable ** MORE ** processing"
  317.   (interactive)
  318.   (te-toggle-more-processing t))
  319.  
  320. (defun te-disable-more-processing ()
  321.   "Disable ** MORE ** processing"
  322.   (interactive)
  323.   (te-toggle-more-processing nil))
  324.  
  325. (defun te-do-scrolling ()
  326.   "Scroll at end of page (yuck)"
  327.   (interactive)
  328.   (te-toggle-scrolling t))
  329.  
  330. (defun te-do-wrapping ()
  331.   "Wrap to top of window at end of page"
  332.   (interactive)
  333.   (te-toggle-scrolling nil))
  334.  
  335.  
  336. (defun te-set-redisplay-interval (arg)
  337.   "Set the maximum interval (in output characters) between screen updates.
  338. Set this number to large value for greater throughput,
  339. set it smaller for more frequent updates (but overall slower performance."
  340.   (interactive "NMax number of output chars between redisplay updates: ")
  341.   (setq arg (max arg 1))
  342.   (setq terminal-redisplay-interval arg
  343.     te-redisplay-count 0))
  344.  
  345. ;;;; more map
  346.  
  347. ;; every command -must- call te-more-break-unwind
  348. ;; or grave lossage will result
  349.  
  350. (put 'te-more-break-unread 'suppress-keymap t)
  351. (defun te-more-break-unread ()
  352.   (interactive)
  353.   (if (eq last-input-char terminal-escape-char)
  354.       (call-interactively 'te-escape)
  355.     (message "Continuing from more break (\"%s\" typed, %d chars output pending...)"
  356.          (single-key-description last-input-char)
  357.          (te-pending-output-length))
  358.     (setq te-more-count 259259)
  359.     (te-more-break-unwind)
  360.     (let ((terminal-more-processing nil))
  361.       (te-pass-through))))
  362.  
  363. (defun te-more-break-resume ()
  364.   "Proceed past the **MORE** break,
  365. allowing the next page of output to appear"
  366.   (interactive)
  367.   (message "Continuing from more break")
  368.   (te-more-break-unwind))
  369.  
  370. (defun te-more-break-help ()
  371.   "Provide help on commands available in a terminal-emulator **MORE** break"
  372.   (interactive)
  373.   (message "Terminal-emulator more break help...")
  374.   (sit-for 0)
  375.   (with-electric-help
  376.     (function (lambda ()
  377.       (princ "Terminal-emulator more break.\n\n")
  378.       (princ (format "Type \"%s\" (te-more-break-resume)\n%s\n"
  379.              (where-is-internal 'te-more-break-resume
  380.                     terminal-more-break-map nil t)
  381.              (documentation 'te-more-break-resume)))
  382.       (princ (substitute-command-keys "\\{terminal-more-break-map}\n"))
  383.       (princ "Any other key is passed through to the program
  384. running under the terminal emulator and disables more processing until
  385. all pending output has been dealt with.")
  386.       nil))))
  387.  
  388.  
  389. (defun te-more-break-advance-one-line ()
  390.   "Allow one more line of text to be output before doing another more break."
  391.   (interactive)
  392.   (setq te-more-count 1)
  393.   (te-more-break-unwind))
  394.  
  395. (defun te-more-break-flush-pending-output ()
  396.   "Discard any output which has been received by the terminal emulator but
  397. not yet processed and then proceed from the more break."
  398.   (interactive)
  399.   (te-more-break-unwind)
  400.   (te-flush-pending-output))
  401.  
  402. (defun te-flush-pending-output ()
  403.   "Discard any as-yet-unprocessed output which has been received by
  404. the terminal emulator."
  405.   (interactive)
  406.   ;; this could conceivably be confusing in the presence of
  407.   ;; escape-sequences spanning process-output chunks
  408.   (if (null (cdr te-pending-output))
  409.       (message "(There is no output pending)")
  410.     (let ((length (te-pending-output-length)))
  411.       (message "Flushing %d chars of pending output" length)
  412.       (setq te-pending-output
  413.         (list 0 (format "\n*** %d chars of pending output flushed ***\n"
  414.                 length)))
  415.       (te-update-pending-output-display)
  416.       (te-process-output nil)
  417.       (sit-for 0))))
  418.  
  419.  
  420. (defun te-pass-through ()
  421.   "Character is passed to the program running under the terminal emulator.
  422. One characters is treated specially:
  423. the terminal escape character (normally C-^)
  424. lets you type a terminal emulator command."
  425.   (interactive)
  426.   (cond ((eq last-input-char terminal-escape-char)
  427.      (call-interactively 'te-escape))
  428.     (t
  429.      ;; Convert `return' to C-m, etc. 
  430.      (if (and (symbolp last-input-char)
  431.           (get last-input-char 'ascii-character))
  432.          (setq last-input-char (get last-input-char 'ascii-character)))
  433.      ;; Convert meta characters to 8-bit form for transmission.
  434.      (if (and (integerp last-input-char)
  435.           (not (zerop (logand last-input-char (lsh 1 23)))))
  436.          (setq last-input-char (+ 128 (logand last-input-char 127))))
  437.      ;; Now ignore all but actual characters.
  438.      ;; (It ought to be possible to send through function
  439.      ;; keys as character sequences if we add a description
  440.      ;; to our termcap entry of what they should look like.)
  441.      (if (integerp last-input-char)
  442.          (progn
  443.            (and terminal-more-processing (null (cdr te-pending-output))
  444.             (te-set-more-count nil))
  445.            (send-string te-process (make-string 1 last-input-char))
  446.            (te-process-output t))
  447.        (message "Function key `%s' ignored"
  448.             (single-key-description last-input-char))))))
  449.  
  450.  
  451. (defun te-set-window-start ()
  452.   (let* ((w (get-buffer-window (current-buffer)))
  453.      (h (if w (window-height w))))
  454.     (cond ((not w)) ; buffer not displayed
  455.       ((>= h (/ (- (point) (point-min)) (1+ te-width)))
  456.        ;; this is the normal case
  457.        (set-window-start w (point-min)))
  458.       ;; this happens if some vandal shrinks our window.
  459.       ((>= h (/ (- (point-max) (point)) (1+ te-width)))
  460.        (set-window-start w (- (point-max) (* h (1+ te-width)) -1)))
  461.       ;; I give up.
  462.       (t nil))))
  463.  
  464. (defun te-pending-output-length ()
  465.   (let ((length (car te-pending-output))
  466.     (tem (cdr te-pending-output)))
  467.     (while tem
  468.       (setq length (+ length (length (car tem))) tem (cdr tem)))
  469.     length))
  470.  
  471. ;;>> What use is this terminal-edit stuff anyway?
  472. ;;>>  If nothing else, it was written by somebody who didn't
  473. ;;>>  competently understand the terminal-emulator...
  474.  
  475. (defvar terminal-edit-map nil)
  476. (if terminal-edit-map
  477.     nil
  478.   (setq terminal-edit-map (make-sparse-keymap))
  479.   (define-key terminal-edit-map "\C-c\C-c" 'terminal-cease-edit))
  480.  
  481. ;; Terminal Edit mode is suitable only for specially formatted data.
  482. (put 'terminal-edit-mode 'mode-class 'special)
  483.  
  484. (defun terminal-edit-mode ()
  485.   "Major mode for editing the contents of a terminal-emulator buffer.
  486. The editing commands are the same as in Fundamental mode,
  487. together with a command \\<terminal-edit-mode-map>to return to terminal emulation: \\[terminal-cease-edit]."
  488.   (use-local-map terminal-edit-map)
  489.   (setq major-mode 'terminal-edit-mode)
  490.   (setq mode-name "Terminal Edit")
  491.   (setq mode-line-modified (default-value 'mode-line-modified))
  492.   (setq mode-line-process nil)
  493.   (run-hooks 'terminal-edit-mode-hook))
  494.  
  495. (defun te-edit ()
  496.   "Start editing the terminal emulator buffer with ordinary Emacs commands."
  497.   (interactive)
  498.   (terminal-edit-mode)
  499.   (set-buffer-modified-p (buffer-modified-p))
  500.   ;; Make mode line update.
  501.   (if (eq (key-binding "\C-c\C-c") 'terminal-cease-edit)
  502.       (message "Editing: Type C-c C-c to return to Terminal")
  503.     (message (substitute-command-keys
  504.            "Editing: Type \\[terminal-cease-edit] to return to Terminal"))))
  505.  
  506. (defun terminal-cease-edit ()
  507.   "Finish editing message; switch back to Terminal proper."
  508.   (interactive)
  509.  
  510.   ;;>> emulator will blow out if buffer isn't exactly te-width x te-height
  511.   (let ((buffer-read-only nil))
  512.     (widen)
  513.     (let ((opoint (point-marker))
  514.           (width te-width)
  515.           (h (1- te-height)))
  516.       (goto-char (point-min))
  517.       (while (>= h 0)
  518.         (let ((p (point)))
  519.           (cond ((search-forward "\n" (+ p width) 'move)
  520.                  (forward-char -1)
  521.                  (insert-char ?\  (- width (- (point) p)))
  522.                  (forward-char 1))
  523.                 ((eobp)
  524.                  (insert-char ?\  (- width (- (point) p))))
  525.                 ((= (following-char) ?\n)
  526.                  (forward-char 1))
  527.                 (t
  528.                  (setq p (point))
  529.                  (if (search-forward "\n" nil t)
  530.                      (delete-region p (1- (point)))
  531.                      (delete-region p (point-max))))))
  532.         (if (= h 0)
  533.             (if (not (eobp)) (delete-region (point) (point-max)))
  534.             (if (eobp) (insert ?\n)))
  535.         (setq h (1- h)))
  536.       (goto-char opoint)
  537.       (set-marker opoint nil nil)
  538.       (setq te-saved-point (point))
  539.       (setq te-redisplay-count 0)
  540.       (setq te-more-count -1)))
  541.  
  542.   (setq mode-line-modified (default-value 'mode-line-modified))
  543.   (setq major-mode 'terminal-mode)
  544.   (setq mode-name "terminal")
  545.   (setq mode-line-process '(": %s")))
  546.  
  547. ;;;; more break hair
  548.  
  549. (defun te-more-break ()
  550.   (te-set-more-count t)
  551.   (make-local-variable 'te-more-old-point)
  552.   (setq te-more-old-point (point))
  553.   (make-local-variable 'te-more-old-local-map)
  554.   (setq te-more-old-local-map (current-local-map))
  555.   (use-local-map terminal-more-break-map)
  556.   (make-local-variable 'te-more-old-filter)
  557.   (setq te-more-old-filter (process-filter te-process))
  558.   (make-local-variable 'te-more-old-mode-line-format)
  559.   (setq te-more-old-mode-line-format mode-line-format
  560.     mode-line-format (list "--   **MORE**  "
  561.                    mode-line-buffer-identification
  562.                    "%-"))
  563.   (set-process-filter te-process
  564.     (function (lambda (process string)
  565.         (save-excursion
  566.           (set-buffer (process-buffer process))
  567.           (setq te-pending-output (nconc te-pending-output
  568.                          (list string))))
  569.           (te-update-pending-output-display))))
  570.   (te-update-pending-output-display)
  571.   (if (eq (window-buffer (selected-window)) (current-buffer))
  572.       (message "More break "))
  573.   (or (eobp)
  574.       (null terminal-more-break-insertion)
  575.       (save-excursion
  576.     (forward-char 1)
  577.     (delete-region (point) (+ (point) te-width))
  578.     (insert terminal-more-break-insertion)))
  579.   (run-hooks 'terminal-more-break-hook)
  580.   (sit-for 0) ;get display to update
  581.   (throw 'te-process-output t))
  582.  
  583. (defun te-more-break-unwind ()
  584.   (use-local-map te-more-old-local-map)
  585.   (set-process-filter te-process te-more-old-filter)
  586.   (goto-char te-more-old-point)
  587.   (setq mode-line-format te-more-old-mode-line-format)
  588.   (set-buffer-modified-p (buffer-modified-p))
  589.   (let ((buffer-read-only nil))
  590.     (cond ((eobp))
  591.       (terminal-more-break-insertion
  592.        (forward-char 1)
  593.        (delete-region (point)
  594.               (+ (point) (length terminal-more-break-insertion)))
  595.        (insert-char ?\  te-width)
  596.        (goto-char te-more-old-point)))
  597.     (setq te-more-old-point nil)
  598.     (let ((te-more-count 259259))
  599.       (te-newline)))
  600.   ;(sit-for 0)
  601.   (te-process-output t))
  602.  
  603. (defun te-set-more-count (newline)
  604.   (let ((line (/ (- (point) (point-min)) (1+ te-width))))
  605.     (if newline (setq line (1+ line)))
  606.     (cond ((= line te-height)
  607.        (setq te-more-count te-height))
  608.       ;>>>> something is strange.  Investigate this!
  609.       ((= line (1- te-height))
  610.        (setq te-more-count te-height))
  611.       ((or (< line (/ te-height 2))
  612.            (> (- te-height line) 10))
  613.        ;; break at end of this page
  614.        (setq te-more-count (- te-height line)))
  615.       (t
  616.        ;; migrate back towards top (ie bottom) of screen.
  617.        (setq te-more-count (- te-height
  618.                   (if (> te-height 10) 2 1)))))))
  619.  
  620.  
  621. ;;;; More or less straight-forward terminal escapes
  622.  
  623. ;; ^j, meaning `newline' to non-display programs.
  624. ;; (Who would think of ever writing a system which doesn't understand
  625. ;;  display terminals natively?  Un*x:  The Operating System of the Future.)
  626. (defun te-newline ()
  627.   "Move down a line, optionally do more processing, perhaps wrap/scroll,
  628. move to start of new line, clear to end of line."
  629.   (end-of-line)
  630.   (cond ((not terminal-more-processing))
  631.     ((< (setq te-more-count (1- te-more-count)) 0)
  632.      (te-set-more-count t))
  633.     ((eql te-more-count 0)
  634.      ;; this doesn't return
  635.      (te-more-break)))
  636.   (if (eobp)
  637.       (progn
  638.     (delete-region (point-min) (+ (point-min) te-width))
  639.     (goto-char (point-min))
  640.     (if terminal-scrolling
  641.         (progn (delete-char 1)
  642.            (goto-char (point-max))
  643.            (insert ?\n))))
  644.     (forward-char 1)
  645.     (delete-region (point) (+ (point) te-width)))
  646.   (insert-char ?\  te-width)
  647.   (beginning-of-line)
  648.   (te-set-window-start))
  649.  
  650. ; ^p = x+32 y+32
  651. (defun te-move-to-position ()
  652.   ;; must offset by #o40 since cretinous unix won't send a 004 char through
  653.   (let ((y (- (te-get-char) 32))
  654.     (x (- (te-get-char) 32)))
  655.     (if (or (> x te-width)
  656.         (> y te-height))
  657.     ()
  658.       (goto-char (+ (point-min) x (* y (1+ te-width))))
  659.       ;(te-set-window-start?)
  660.       ))
  661.   (setq te-more-count -1))
  662.  
  663.  
  664.  
  665. ;; ^p c
  666. (defun te-clear-rest-of-line ()
  667.   (save-excursion
  668.     (let ((n (- (point) (progn (end-of-line) (point)))))
  669.       (delete-region (point) (+ (point) n))
  670.       (insert-char ?\  (- n)))))
  671.  
  672.  
  673. ;; ^p C
  674. (defun te-clear-rest-of-screen ()
  675.   (save-excursion
  676.     (te-clear-rest-of-line)
  677.     (while (progn (end-of-line) (not (eobp)))
  678.       (forward-char 1) (end-of-line)
  679.       (delete-region (- (point) te-width) (point))
  680.       (insert-char ?\  te-width))))
  681.       
  682.  
  683. ;; ^p ^l
  684. (defun te-clear-screen ()
  685.   ;; regenerate buffer to compensate for (nonexistent!!) bugs.
  686.   (erase-buffer)
  687.   (let ((i 0))
  688.     (while (< i te-height)
  689.       (setq i (1+ i))
  690.       (insert-char ?\  te-width)
  691.       (insert ?\n)))
  692.   (delete-region (1- (point-max)) (point-max))
  693.   (goto-char (point-min))
  694.   (setq te-more-count -1))
  695.  
  696.  
  697. ;; ^p ^o count+32
  698. (defun te-insert-lines ()
  699.   (if (not (bolp))
  700.       ();(error "fooI")
  701.     (save-excursion
  702.       (let* ((line (- te-height (/ (- (point) (point-min)) (1+ te-width)) -1))
  703.          (n (min (- (te-get-char) ?\ ) line))
  704.          (i 0))
  705.     (delete-region (- (point-max) (* n (1+ te-width))) (point-max))
  706.     (if (eql (point) (point-max)) (insert ?\n))
  707.     (while (< i n)
  708.       (setq i (1+ i))
  709.       (insert-char ?\  te-width)
  710.       (or (eql i line) (insert ?\n))))))
  711.   (setq te-more-count -1))
  712.  
  713.  
  714. ;; ^p ^k count+32
  715. (defun te-delete-lines ()
  716.   (if (not (bolp))
  717.       ();(error "fooD")
  718.     (let* ((line (- te-height (/ (- (point) (point-min)) (1+ te-width)) -1))
  719.        (n (min (- (te-get-char) ?\ ) line))
  720.        (i 0))
  721.       (delete-region (point)
  722.              (min (+ (point) (* n (1+ te-width))) (point-max)))
  723.       (save-excursion
  724.     (goto-char (point-max))
  725.     (while (< i n)
  726.       (setq i (1+ i))
  727.       (insert-char ?\  te-width)
  728.       (or (eql i line) (insert ?\n))))))
  729.   (setq te-more-count -1))
  730.  
  731. ;; ^p ^a
  732. (defun te-beginning-of-line ()
  733.   (beginning-of-line))
  734.  
  735. ;; ^p ^b
  736. (defun te-backward-char ()
  737.   (if (not (bolp))
  738.       (backward-char 1)))
  739.  
  740. ;; ^p ^f
  741. (defun te-forward-char ()
  742.   (if (not (eolp))
  743.       (forward-char 1)))
  744.  
  745.  
  746. ;; 0177
  747. (defun te-delete ()
  748.   (if (bolp)
  749.       ()
  750.     (delete-region (1- (point)) (point))
  751.     (insert ?\ )
  752.     (forward-char -1)))
  753.  
  754. ;; ^p ^g
  755. (defun te-beep ()
  756.   (beep))
  757.  
  758.  
  759. ;; ^p _ count+32
  760. (defun te-insert-spaces ()
  761.   (let* ((p (point))
  762.      (n (min (- (te-get-char) 32)
  763.          (- (progn (end-of-line) (point)) p))))
  764.     (if (<= n 0)
  765.     nil
  766.       (delete-char (- n))
  767.       (goto-char p)
  768.       (insert-char ?\  n))
  769.     (goto-char p)))
  770.  
  771. ;; ^p d count+32  (should be ^p ^d but cretinous un*x won't send ^d chars!!!)
  772. (defun te-delete-char ()
  773.   (let* ((p (point))
  774.      (n (min (- (te-get-char) 32)
  775.          (- (progn (end-of-line) (point)) p))))
  776.     (if (<= n 0)
  777.     nil
  778.       (insert-char ?\  n)
  779.       (goto-char p)
  780.       (delete-char n))
  781.     (goto-char p)))
  782.  
  783.  
  784.  
  785. ;; disgusting unix-required shit
  786. ;;  Are we living twenty years in the past yet?
  787.  
  788. (defun te-losing-unix ()
  789.   nil)
  790.  
  791. ;; ^i
  792. (defun te-output-tab ()
  793.   (let* ((p (point))
  794.      (x (- p (progn (beginning-of-line) (point))))
  795.      (l (min (- 8 (logand x 7))
  796.          (progn (end-of-line) (- (point) p)))))
  797.     (goto-char (+ p l))))
  798.  
  799. ;; ^p ^j
  800. ;; Handle the `do' or `nl' termcap capability.
  801. ;;>> I am not sure why this broken, obsolete, capability is here.
  802. ;;>> Perhaps it is for VIle.  No comment was made about why it
  803. ;;>> was added (in "Sun Dec  6 01:22:27 1987  Richard Stallman")
  804. (defun te-down-vertically-or-scroll ()
  805.   "Move down a line vertically, or scroll at bottom."
  806.   (let ((column (current-column)))
  807.     (end-of-line)
  808.     (if (eobp)
  809.     (progn
  810.       (delete-region (point-min) (+ (point-min) te-width))
  811.       (goto-char (point-min))
  812.       (delete-char 1)
  813.       (goto-char (point-max))
  814.       (insert ?\n)
  815.       (insert-char ?\  te-width)
  816.       (beginning-of-line))
  817.       (forward-line 1))
  818.     (move-to-column column))
  819.   (te-set-window-start))
  820.  
  821. ;; Also:
  822. ;;  ^m => beginning-of-line (for which it -should- be using ^p ^a, right?!!)
  823. ;;  ^g => te-beep (for which it should use ^p ^g)
  824. ;;  ^h => te-backward-char (for which it should use ^p ^b)
  825.  
  826.  
  827.  
  828. (defun te-filter (process string)
  829.   (let* ((obuf (current-buffer)))
  830.     ;; can't use save-excursion, as that preserves point, which we don't want
  831.     (unwind-protect
  832.     (progn
  833.       (set-buffer (process-buffer process))
  834.       (goto-char te-saved-point)
  835.       (and (bufferp te-log-buffer)
  836.            (if (null (buffer-name te-log-buffer))
  837.            ;; killed
  838.            (setq te-log-buffer nil)
  839.          (set-buffer te-log-buffer)
  840.          (goto-char (point-max))
  841.          (insert-before-markers string)
  842.          (set-buffer (process-buffer process))))
  843.       (setq te-pending-output (nconc te-pending-output (list string)))
  844.       (te-update-pending-output-display)
  845.       (te-process-output (eq (current-buffer)
  846.                  (window-buffer (selected-window))))
  847.       (set-buffer (process-buffer process))
  848.       (setq te-saved-point (point)))
  849.       (set-buffer obuf))))
  850.  
  851. ;; (A version of the following comment which might be distractingly offensive
  852. ;; to some readers has been moved to term-nasty.el.)
  853. ;; unix lacks ITS-style tty control...
  854. (defun te-process-output (preemptable)
  855.   ;;>> There seems no good reason to ever disallow preemption
  856.   (setq preemptable t)
  857.   (catch 'te-process-output
  858.     (let ((buffer-read-only nil)
  859.       (string nil) ostring start char (matchpos nil))
  860.       (while (cdr te-pending-output)
  861.     (setq ostring string
  862.           start (car te-pending-output)
  863.           string (car (cdr te-pending-output))
  864.           char (aref string start))
  865.     (if (eql (setq start (1+ start)) (length string))
  866.         (progn (setq te-pending-output
  867.                (cons 0 (cdr (cdr te-pending-output)))
  868.              start 0
  869.              string (car (cdr te-pending-output)))
  870.            (te-update-pending-output-display))
  871.         (setcar te-pending-output start))
  872.     (if (and (> char ?\037) (< char ?\377))
  873.         (cond ((eolp)
  874.            ;; unread char
  875.            (if (eql start 0)
  876.                (setq te-pending-output
  877.                  (cons 0 (cons (make-string 1 char)
  878.                        (cdr te-pending-output))))
  879.                (setcar te-pending-output (1- start)))
  880.            (te-newline))
  881.           ((null string)
  882.            (delete-char 1) (insert char)
  883.            (te-redisplay-if-necessary 1))
  884.           (t
  885.            (let ((end (or (and (eq ostring string) matchpos)
  886.                   (setq matchpos (string-match
  887.                            "[\000-\037\177-\377]"
  888.                            string start))
  889.                   (length string))))
  890.              (delete-char 1) (insert char)
  891.              (setq char (point)) (end-of-line)
  892.              (setq end (min end (+ start (- (point) char))))
  893.              (goto-char char)
  894.              (if (eql end matchpos) (setq matchpos nil))
  895.              (delete-region (point) (+ (point) (- end start)))
  896.              (insert (if (and (eql start 0)
  897.                       (eql end (length string)))
  898.                  string
  899.                      (substring string start end)))
  900.              (if (eql end (length string))
  901.              (setq te-pending-output
  902.                    (cons 0 (cdr (cdr te-pending-output))))
  903.                  (setcar te-pending-output end))
  904.              (te-redisplay-if-necessary (1+ (- end start))))))
  905.       ;; I suppose if I split the guts of this out into a separate
  906.       ;;  function we could trivially emulate different terminals
  907.       ;; Who cares in any case?  (Apart from stupid losers using rlogin)
  908.       (funcall
  909.         (if (eql char ?\^p)
  910.             (or (cdr (assq (te-get-char)
  911.                    '((?= . te-move-to-position)
  912.                  (?c . te-clear-rest-of-line)
  913.                  (?C . te-clear-rest-of-screen)
  914.                  (?\C-o . te-insert-lines)
  915.                  (?\C-k . te-delete-lines)
  916.                  ;; not necessary, but help sometimes.
  917.                  (?\C-a . te-beginning-of-line)
  918.                  (?\C-b . te-backward-char)
  919.                  ;; should be C-d, but un*x
  920.                  ;;  pty's won't send \004 through!
  921.                                  ;; Can you believe this?
  922.                  (?d . te-delete-char)
  923.                  (?_ . te-insert-spaces)
  924.                  ;; random
  925.                  (?\C-f . te-forward-char)
  926.                  (?\C-g . te-beep)
  927.                  (?\C-j . te-down-vertically-or-scroll)
  928.                  (?\C-l . te-clear-screen)
  929.                  )))
  930.             'te-losing-unix)
  931.             (or (cdr (assq char
  932.                    '((?\C-j . te-newline)
  933.                  (?\177 . te-delete)
  934.                  ;; Did I ask to be sent these characters?
  935.                  ;; I don't remember doing so, either.
  936.                  ;; (Perhaps some operating system or
  937.                  ;; other is completely incompetent...)
  938.                  (?\C-m . te-beginning-of-line)
  939.                  (?\C-g . te-beep)             
  940.                  (?\C-h . te-backward-char)     
  941.                  (?\C-i . te-output-tab))))     
  942.             'te-losing-unix)))
  943.       (te-redisplay-if-necessary 1))
  944.     (and preemptable
  945.          (input-pending-p)
  946.          ;; preemptable output!  Oh my!!
  947.          (throw 'te-process-output t)))))
  948.   ;; We must update window-point in every window displaying our buffer
  949.   (let* ((s (selected-window))
  950.      (w s))
  951.     (while (not (eq s (setq w (next-window w))))
  952.       (if (eq (window-buffer w) (current-buffer))
  953.       (set-window-point w (point))))))
  954.  
  955. (defun te-get-char ()
  956.   (if (cdr te-pending-output)
  957.       (let ((start (car te-pending-output))
  958.         (string (car (cdr te-pending-output))))
  959.     (prog1 (aref string start)
  960.       (if (eql (setq start (1+ start)) (length string))
  961.           (setq te-pending-output (cons 0 (cdr (cdr te-pending-output))))
  962.           (setcar te-pending-output start))))
  963.     (catch 'char
  964.       (let ((filter (process-filter te-process)))
  965.     (unwind-protect
  966.         (progn
  967.           (set-process-filter te-process
  968.                   (function (lambda (p s)
  969.                                     (or (eql (length s) 1)
  970.                                         (setq te-pending-output (list 1 s)))
  971.                                     (throw 'char (aref s 0)))))
  972.           (accept-process-output te-process))
  973.       (set-process-filter te-process filter))))))
  974.  
  975.  
  976. (defun te-redisplay-if-necessary (length)
  977.   (and (<= (setq te-redisplay-count (- te-redisplay-count length)) 0)
  978.        (eq (current-buffer) (window-buffer (selected-window)))
  979.        (waiting-for-user-input-p)
  980.        (progn (te-update-pending-output-display)
  981.           (sit-for 0)
  982.           (setq te-redisplay-count terminal-redisplay-interval))))
  983.  
  984. (defun te-update-pending-output-display ()
  985.   (if (null (cdr te-pending-output))
  986.       (setq te-pending-output-info "")      
  987.     (let ((length (te-pending-output-length)))
  988.       (if (< length 1500)
  989.       (setq te-pending-output-info "")
  990.     (setq te-pending-output-info (format "(%dK chars output pending) "
  991.                          (/ (+ length 512) 1024))))))
  992.   ;; update mode line
  993.   (set-buffer-modified-p (buffer-modified-p)))
  994.  
  995.  
  996. (defun te-sentinel (process message)
  997.   (cond ((eq (process-status process) 'run))
  998.     ((null (buffer-name (process-buffer process)))) ;deleted
  999.     (t (let ((b (current-buffer)))
  1000.          (save-excursion
  1001.            (set-buffer (process-buffer process))
  1002.            (setq buffer-read-only nil)
  1003.            (fundamental-mode)
  1004.            (goto-char (point-max))
  1005.            (delete-blank-lines)
  1006.            (delete-horizontal-space)
  1007.            (insert "\n*******\n" message "*******\n"))
  1008.          (if (and (eq b (process-buffer process))
  1009.               (waiting-for-user-input-p))
  1010.          (progn (goto-char (point-max))
  1011.             (recenter -1)))))))
  1012.  
  1013. (defvar te-stty-string "stty -nl erase '^?' kill '^u' intr '^c' echo pass8"
  1014.   "Shell command to set terminal modes for terminal emulator.")
  1015. ;; This used to have `new' in it, but that loses outside BSD
  1016. ;; and it's apparently not needed in BSD.
  1017.  
  1018. (defvar explicit-shell-file-name nil
  1019.   "*If non-nil, is file name to use for explicitly requested inferior shell.")
  1020.  
  1021. ;;;###autoload
  1022. (defun terminal-emulator (buffer program args &optional width height)
  1023.   "Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
  1024. ARGS is a list of argument-strings.  Remaining arguments are WIDTH and HEIGHT.
  1025. BUFFER's contents are made an image of the display generated by that program,
  1026. and any input typed when BUFFER is the current Emacs buffer is sent to that
  1027. program an keyboard input.
  1028.  
  1029. Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
  1030. are parsed from an input-string using your usual shell.
  1031. WIDTH and HEIGHT are determined from the size of the current window
  1032. -- WIDTH will be one less than the window's width, HEIGHT will be its height.
  1033.  
  1034. To switch buffers and leave the emulator, or to give commands
  1035. to the emulator itself (as opposed to the program running under it),
  1036. type Control-^.  The following character is an emulator command.
  1037. Type Control-^ twice to send it to the subprogram.
  1038. This escape character may be changed using the variable `terminal-escape-char'.
  1039.  
  1040. `Meta' characters may not currently be sent through the terminal emulator.
  1041.  
  1042. Here is a list of some of the variables which control the behaviour
  1043. of the emulator -- see their documentation for more information:
  1044. terminal-escape-char, terminal-scrolling, terminal-more-processing,
  1045. terminal-redisplay-interval.
  1046.  
  1047. This function calls the value of terminal-mode-hook if that exists
  1048. and is non-nil after the terminal buffer has been set up and the
  1049. subprocess started.
  1050.  
  1051. Presently with `termcap' only; if somebody sends us code to make this
  1052. work with `terminfo' we will try to use it."
  1053.   (interactive
  1054.     (cons (save-excursion
  1055.         (set-buffer (get-buffer-create "*terminal*"))
  1056.         (buffer-name (if (or (not (boundp 'te-process))
  1057.                  (null te-process)
  1058.                  (not (eq (process-status te-process)
  1059.                       'run)))
  1060.                  (current-buffer)
  1061.                (generate-new-buffer "*terminal*"))))
  1062.       (append
  1063.         (let* ((default-s
  1064.              ;; Default shell is same thing M-x shell uses.
  1065.              (or explicit-shell-file-name
  1066.              (getenv "ESHELL")
  1067.              (getenv "SHELL")
  1068.              "/bin/sh"))
  1069.            (s (read-string
  1070.                (format "Run program in emulator: (default %s) "
  1071.                    default-s))))
  1072.           (if (equal s "")
  1073.           (list default-s '())
  1074.         (te-parse-program-and-args s))))))
  1075.   (switch-to-buffer buffer)
  1076.   (if (null width) (setq width (- (window-width (selected-window)) 1)))
  1077.   (if (null height) (setq height (- (window-height (selected-window)) 1)))
  1078.   (terminal-mode)
  1079.   (setq te-width width te-height height)
  1080.   (setq mode-line-buffer-identification
  1081.     (list (format "Emacs terminal %dx%d: %%b  " te-width te-height)
  1082.           'te-pending-output-info))
  1083.   (let ((buffer-read-only nil))
  1084.     (te-clear-screen))
  1085.   (let (process)
  1086.     (while (setq process (get-buffer-process (current-buffer)))
  1087.       (if (y-or-n-p (format "Kill process %s? " (process-name process)))
  1088.       (delete-process process)
  1089.     (error "Process %s not killed" (process-name process)))))
  1090.   (condition-case err
  1091.       (let ((termcap
  1092.              ;; Because of Unix Brain Death(tm), we can't change
  1093.              ;;  the terminal type of a running process, and so
  1094.              ;;  terminal size and scrollability are wired-down
  1095.              ;;  at this point.  ("Detach?  What's that?")
  1096.              (concat (format "emacs-virtual:co#%d:li#%d:%s"
  1097.                              ;; Sigh.  These can't be dynamically changed.
  1098.                              te-width te-height (if terminal-scrolling
  1099.                                                     "" "ns:"))
  1100.                      ;;-- Basic things
  1101.                      ;; cursor-motion, bol, forward/backward char
  1102.                      "cm=^p=%+ %+ :cr=^p^a:le=^p^b:nd=^p^f:"
  1103.                      ;; newline, clear eof/eof, audible bell
  1104.                      "nw=^j:ce=^pc:cd=^pC:cl=^p^l:bl=^p^g:"
  1105.                      ;; insert/delete char/line
  1106.                      "IC=^p_%+ :DC=^pd%+ :AL=^p^o%+ :DL=^p^k%+ :"
  1107.                      ;;-- Not-widely-known (ie nonstandard) flags, which mean
  1108.                      ;; o writing in the last column of the last line
  1109.                      ;;   doesn't cause idiotic scrolling, and
  1110.                      ;; o don't use idiotische c-s/c-q sogenannte
  1111.                      ;;   ``flow control'' auf keinen Fall.
  1112.                      "LP:NF:"
  1113.                      ;;-- For stupid or obsolete programs
  1114.                      "ic=^p_!:dc=^pd!:al=^p^o!:dl=^p^k!:ho=^p=  :"
  1115.                      ;;-- For disgusting programs.
  1116.                      ;; (VI? What losers need these, I wonder?)
  1117.                      "im=:ei=:dm=:ed=:mi:do=^p^j:nl=^p^j:bs:")))
  1118.     (let ((process-environment
  1119.            (cons "TERM=emacs-virtual"
  1120.              (cons (concat "TERMCAP=" termcap)
  1121.                process-environment))))
  1122.       (setq te-process
  1123.         (start-process "terminal-emulator" (current-buffer)
  1124.                    "/bin/sh" "-c"
  1125.                    ;; Yuck!!! Start a shell to set some terminal
  1126.                    ;; control characteristics.  Then start the
  1127.                    ;; "env" program to setup the terminal type
  1128.                    ;; Then finally start the program we wanted.
  1129.                    (format "%s; exec %s"
  1130.                        te-stty-string
  1131.                        (mapconcat 'te-quote-arg-for-sh
  1132.                           (cons program args) " ")))))
  1133.     (set-process-filter te-process 'te-filter)
  1134.     (set-process-sentinel te-process 'te-sentinel))
  1135.     (error (fundamental-mode)
  1136.        (signal (car err) (cdr err))))
  1137.   (setq inhibit-quit t)            ;sport death
  1138.   (use-local-map terminal-map)
  1139.   (run-hooks 'terminal-mode-hook)
  1140.   (message "Entering emacs terminal-emulator...  Type %s %s for help"
  1141.        (single-key-description terminal-escape-char)
  1142.        (mapconcat 'single-key-description
  1143.               (where-is-internal 'te-escape-help
  1144.                      terminal-escape-map
  1145.                      nil t)
  1146.               " ")))
  1147.  
  1148.  
  1149. (defun te-parse-program-and-args (s)
  1150.   (cond ((string-match "\\`\\([a-zA-Z0-9-+=_.@/:]+[ \t]*\\)+\\'" s)
  1151.      (let ((l ()) (p 0))
  1152.        (while p
  1153.          (setq l (cons (if (string-match
  1154.                 "\\([a-zA-Z0-9-+=_.@/:]+\\)\\([ \t]+\\)*"
  1155.                 s p)
  1156.                    (prog1 (substring s p (match-end 1))
  1157.                  (setq p (match-end 0))
  1158.                  (if (eql p (length s)) (setq p nil)))
  1159.                    (prog1 (substring s p)
  1160.                  (setq p nil)))
  1161.                l)))
  1162.        (setq l (nreverse l))
  1163.        (list (car l) (cdr l))))
  1164.     ((and (string-match "[ \t]" s) (not (file-exists-p s)))
  1165.      (list shell-file-name (list "-c" (concat "exec " s))))
  1166.     (t (list s ()))))
  1167.  
  1168. (put 'terminal-mode 'mode-class 'special)
  1169. ;; This is only separated out from function terminal-emulator
  1170. ;; to keep the latter a little more manageable.
  1171. (defun terminal-mode ()
  1172.   "Set up variables for use with the terminal-emulator.
  1173. One should not call this -- it is an internal function
  1174. of the terminal-emulator"
  1175.   (kill-all-local-variables)
  1176.   (buffer-disable-undo (current-buffer))
  1177.   (setq major-mode 'terminal-mode)
  1178.   (setq mode-name "terminal")
  1179. ; (make-local-variable 'Helper-return-blurb)
  1180. ; (setq Helper-return-blurb "return to terminal simulator")
  1181.   (setq mode-line-process '(": %s"))
  1182.   (setq buffer-read-only t)
  1183.   (setq truncate-lines t)
  1184.   (make-local-variable 'terminal-escape-char)
  1185.   (setq terminal-escape-char (default-value 'terminal-escape-char))
  1186.   (make-local-variable 'terminal-scrolling)
  1187.   (setq terminal-scrolling (default-value 'terminal-scrolling))
  1188.   (make-local-variable 'terminal-more-processing)
  1189.   (setq terminal-more-processing (default-value 'terminal-more-processing))
  1190.   (make-local-variable 'terminal-redisplay-interval)
  1191.   (setq terminal-redisplay-interval (default-value 'terminal-redisplay-interval))
  1192.   (make-local-variable 'te-width)
  1193.   (make-local-variable 'te-height)
  1194.   (make-local-variable 'te-process)
  1195.   (make-local-variable 'te-pending-output)
  1196.   (setq te-pending-output (list 0))
  1197.   (make-local-variable 'te-saved-point)
  1198.   (setq te-saved-point (point-min))
  1199.   (make-local-variable 'te-pending-output-info) ;for the mode line
  1200.   (setq te-pending-output-info "")
  1201.   (make-local-variable 'inhibit-quit)
  1202.   ;(setq inhibit-quit t)
  1203.   (make-local-variable 'te-log-buffer)
  1204.   (setq te-log-buffer nil)
  1205.   (make-local-variable 'te-more-count)
  1206.   (setq te-more-count -1)
  1207.   (make-local-variable 'te-redisplay-count)
  1208.   (setq te-redisplay-count terminal-redisplay-interval)
  1209.   ;(use-local-map terminal-mode-map)
  1210.   ;; terminal-mode-hook is called above in function terminal-emulator
  1211.   )
  1212.  
  1213. ;;;; what a complete loss
  1214.  
  1215. (defun te-quote-arg-for-sh (string)
  1216.   (cond ((string-match "\\`[a-zA-Z0-9-+=_.@/:]+\\'"
  1217.                string)
  1218.      string)
  1219.     ((not (string-match "[$]" string))
  1220.      ;; "[\"\\]" are special to sh and the lisp reader in the same way
  1221.      (prin1-to-string string))
  1222.     (t
  1223.      (let ((harder "")
  1224.            (start 0)
  1225.            (end 0))
  1226.        (while (cond ((>= start (length string))
  1227.              nil)
  1228.             ;; this is the set of chars magic with "..." in `sh'
  1229.             ((setq end (string-match "[\"\\$]"
  1230.                          string start))
  1231.              t)
  1232.             (t (setq harder (concat harder
  1233.                         (substring string start)))
  1234.                nil))
  1235.          (setq harder (concat harder (substring string start end)
  1236.                                   ;; Can't use ?\\ since `concat'
  1237.                                   ;; unfortunately does prin1-to-string
  1238.                                   ;; on fixna.  Amazing.
  1239.                   "\\"
  1240.                   (substring string
  1241.                          end
  1242.                          (1+ end)))
  1243.            start (1+ end)))
  1244.        (concat "\"" harder "\"")))))
  1245.  
  1246. (provide 'terminal)
  1247.  
  1248. ;;; terminal.el ends here
  1249.